home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / APW Interfaces / AInclude / E16.Loader < prev    next >
Encoding:
Text File  |  1991-07-01  |  937 b   |  36 lines  |  [TEXT/MPS ]

  1. ; File:  E16.Loader
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-90
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. idNotFound GEQU $1101 ; segment/application/entry not found
  9. idPathnameErr GEQU $1103
  10. idNotLoadFile GEQU $1104 ; file is not a load file
  11. idBusyErr GEQU $1105 ; system loader is busy
  12. idFilVersErr GEQU $1107 ; file version error
  13. idUserIDErr GEQU $1108 ; user ID error
  14. idSequenceErr GEQU $1109 ; segnum out of sequence
  15. idBadRecordErr GEQU $110A ; illegal load record found
  16. idForeignSegErr GEQU $110B ; segment is foreign
  17. ; offset constants for InitialLoadOutputRec
  18. ouserID GEQU 0
  19. ostartAddr GEQU 2
  20. odPageAddr GEQU 6
  21. obuffSize GEQU 8
  22. ; offset constants for RestartOutRec
  23. orouserID GEQU 0
  24. orostartAddr GEQU 2
  25. orodPageAddr GEQU 6
  26. orobuffSize GEQU 8
  27. ; offset constants for LoadSegNameOut
  28. olssegAddr GEQU 0
  29. olsuserID GEQU 4
  30. olsfileNum GEQU 6
  31. olssegNum GEQU 8  ;  
  32. ; offset constants for UnloadSegOutRec
  33. oususerID GEQU 0
  34. ousfileNum GEQU 2
  35. oussegNum GEQU 4
  36.